home *** CD-ROM | disk | FTP | other *** search
/ Workbench Design / WB Collection.iso / workbench werkzeuge / scherz programme / pointereyesv4.3&3.11 / v1.1.source / makefile.gcc next >
Makefile  |  1996-04-07  |  295b  |  15 lines

  1.  
  2. CC        = gcc
  3.  
  4. LFLAGS        = -noixemul -fbaserel
  5.  
  6. CFLAGS        = -O2 $(LFLAGS) -msmall-code -fno-builtin -fno-function-cse
  7.  
  8. LIBS        = -lm#-lnixmain -lnix -lamiga -lstubs
  9.  
  10. PointerEyesV1.1: PointerEyesV1.1.o
  11.         $(CC) $(LFLAGS) -o $@ $< $(LIBS)
  12.  
  13. PointerEyesV1.1.o: PointerEyesV1.1.c
  14.         $(CC) $(CFLAGS) -o $@ $< -c
  15.